1bashThis demonstrates basic text substitution using sed.echo "The quick brown fox" | sed 's/brown/red/' #Result: The quick red foxexternal toolssedtext substitution (simple)